home *** CD-ROM | disk | other *** search
/ SGI Hot Mix 8 / Hot Mix 8.iso / .all / demos / Soft_Win / RemoveIt2 (.txt) < prev    next >
Text File  |  1994-06-22  |  756b  |  31 lines

  1. #!/bin/sh
  2.  
  3. #    removeit2
  4. #
  5. #    Derived from:    Template supplied by SGI for hot mix installation
  6. #            and the SoftPC version.
  7. #
  8. #    Author:        Anthony Shaughnessy
  9. #
  10. #    Created on:    7th April 1994
  11. #
  12. #    Sccs ID:    @(#)removeit2.sh    1.4 4/19/94
  13. #
  14. #    Coding Stds.:    2.0
  15. #
  16. #    Purpose:    To remove SoftWindows. This script is called from
  17. #            RemoveIt and is run in a window as root. It uses the
  18. #            RemoveIt3 script, which is a copy of the DeInstall.sw
  19. #            script supplied with the SoftWindows inst image. I 
  20. #            don't want to rely on the DeInstall.sw which is
  21. #            installed in /usr/lib/SoftWindows, in case the user
  22. #            has gone in and removed that directory already. So
  23. #            I have my own copy.
  24.  
  25. cd /
  26. $SOFTWINDIR/RemoveIt3
  27.  
  28. echo "Press <Enter> to close this window \c"
  29. read ans
  30. exit
  31.